Package aspose.words

Source Code of aspose.words.AsposeCloneDoc

/**
* Copyright (c) Aspose 2002-2014. All Rights Reserved.
*/

package aspose.words;

import com.aspose.words.Document;
import com.aspose.words.SaveFormat;

public class AsposeCloneDoc
{
  public static void main(String[] args) throws Exception
  {
    Document doc = new Document("data/document.doc");
    Document clone = doc.deepClone();
    clone.save("data/AsposeClone.doc", SaveFormat.DOC);
  }
}
TOP

Related Classes of aspose.words.AsposeCloneDoc

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.